02. Practice: Apply What You've Learned
Practice With Lists
Next, you will attempt 3 problems dealing with lists.
- Exploring List Properties: You'll explore the difference between concatenating two lists with the
+operator and appending with.append(). You'll also be introduced to a new operator+=. - Product List: You'll write code that multiplies all the numbers in a list together.
- Greatest: You'll write code that takes a list of numbers and returns the greatest number.